←Select platform

ExtractPages(int[],string) Method

Summary

Extract one or more pages from the file associated with this PDFFile object using an array containing page numbers.

Syntax

C#
C++/CLI
Java
Python
public void ExtractPages( 
   int[] pages, 
   string destinationFileName 
) 
public void extractPages( 
   int pages[],  
   java.lang.String destinationFileName 
); 
public: 
void ExtractPages(  
   int pages[], 
   String^ destinationFileName 
)  
def ExtractPages(self,pages,destinationFileName): 

Parameters

pages
The array of pages to be extracted. The array cannot be null and each value in the array must be greater than or equal to 1.

destinationFileName

Name of the destination PDF file to be created. If the value of this parameter is null, then the filename set in FileName will be updated.

Remarks

To use this method, associate this PDFFile object with a valid PDF file and optional password. You can achieve this by either using the PDFFile(string fileName) or PDFFile(string fileName, string password) constructors or set the filename and optional password directly into the FileName and Password properties. You do not need to call Load before using this method.

This method will use the following properties of this PDFFile object:

You can also pass the source pages as range by using the PDFFile.ExtractPages(int firstPageNumber, int lastPageNumber, string destinationFileName) method. Additionally, you can combine pages from multiple files using the PDFFile.MergeFiles or PDFFile.MergeWith methods.

Example

C#
Java
using Leadtools.WinForms; 
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Controls; 
using Leadtools.Drawing; 
using Leadtools.ImageProcessing; 
using Leadtools.Pdf; 
using Leadtools.Svg; 
 
 
 
//This example will extract pages 1, 5 and 3 from a multipage PDF file.  
// Note that in this case, the pages are outputted in different order from the source file. 
 
public void ExtractPages() 
{ 
   string srcFile = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf"); 
   string dstFile = Path.Combine(LEAD_VARS.ImagesDir, "leadtools_1-5-3.pdf"); 
   Leadtools.Pdf.PDFFile pdfFile = new Leadtools.Pdf.PDFFile(srcFile); 
   int[] srcPages = new int[3]; 
   srcPages[0] = 1; 
   srcPages[1] = 5; 
   srcPages[2] = 3; 
   pdfFile.ExtractPages(srcPages, dstFile); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.ByteArrayInputStream; 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.FileNotFoundException; 
import java.io.FileOutputStream; 
import java.io.FileReader; 
import java.io.IOException; 
import java.io.InputStream; 
import java.nio.file.Files; 
import java.nio.file.Paths; 
import java.nio.file.StandardCopyOption; 
import java.util.ArrayList; 
import java.util.Date; 
import java.util.List; 
import java.util.Scanner; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.pdf.*; 
 
 
// This example will extract pages 1, 5 and 3 from a multipage PDF file. 
// Note that in this case, the pages are outputted in different order from the 
// source file. 
 
public void pdfFileExtractPagesArrayExample() { 
 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   String srcFile = combine(LEAD_VARS_IMAGES_DIR, "Leadtools.pdf"); 
   String dstFile = combine(LEAD_VARS_IMAGES_DIR, "leadtools_1-5-3.pdf"); 
   PDFFile pdfFile = new PDFFile(srcFile); 
   int[] srcPages = new int[3]; 
   srcPages[0] = 1; 
   srcPages[1] = 5; 
   srcPages[2] = 3; 
   pdfFile.extractPages(srcPages, dstFile); 
 
   assertTrue(new PDFFile(dstFile).getPageCount() == 3); 
 
} 

Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Pdf Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.